home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / datacomm / 2418 < prev    next >
Encoding:
Text File  |  1996-08-05  |  2.2 KB  |  69 lines

  1. Path: news.citenet.net!usenet
  2. From: fisetj@citenet.net (Jacques Fiset)
  3. Newsgroups: comp.sys.amiga.datacomm
  4. Subject: Re: Thor UUDecode?
  5. Date: 5 Apr 1996 13:32:25 GMT
  6. Organization: CiteNet Telecom - Commercial Internet Service
  7. Message-ID: <1885.6668T1167T447@citenet.net>
  8. References: <295.6667T346T1171@nibelung.demon.co.uk>
  9. NNTP-Posting-Host: g39-230.citenet.net
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP) *UNREGISTERED*
  11.  
  12.  
  13. >When I try to uudecode anything with Thor, it tells me:
  14. >Couldn't find config file (ENV:Thor/UUDecode.cfg).
  15. >Please run CfgUUDecode.thor and try again.
  16.  
  17. >I've looked through the entire archive and can't find this file (which I
  18. >assume is an ARexx script).  What should the ENV: file contain?
  19.  
  20. >Barry
  21.  
  22.  
  23. some files are missing from THOR2.22 you need to find the file called
  24. xfiles.lha on the thor home page. you should get all the uudecode config
  25. arexx script. just run it and voila.
  26.  
  27. you should also edit the uudecode arexx script in thor arexx script
  28.  
  29.  
  30.  
  31. /* UUEncode.thor by Troels Walsted Hansen
  32. ** $VER: UUEncode.thor v2.00 (01.11.94)
  33. **
  34. ** An ARexx script that uuencodes a file and either places it in the
  35. ** clipboard or posts a message for you containing the file. Using
  36. ** LhA, this script will archive the file if it isn't already.
  37. **
  38. ** Utilises LhA by Stefan Boberg for archiving.
  39. ** The script may use either of the following for uuencoding:
  40. **    ╖ UUFast v1.25 by J°rn Halonen
  41. **    ╖ uuIn v1.03 by Nicolas Dade
  42. **    ╖ UUxT v3.0 by Asher Feldman
  43. **
  44. ** New: ╖áThis version is only for THOR v2.0 or higher.
  45. **      ╖áA lot easier to adapt to other uuencoders and includes
  46. **        commandstrings for uuIn, UUFast and UUxT.
  47. **      ╖áDoesn't require rexxsupport.library anymore.
  48. **      ╖áDoesn't require MagicClip anymore.
  49. */
  50.  
  51. /* some user variables. edit to your hearts content */
  52.  
  53. tmpdir = "T:"        /* Work dir for the encoding    */
  54. uuencoder = "uuxt"    /* may be: uuin, uufast or uuxt */
  55.        
  56.              ^
  57.              |----|
  58.                   V
  59.                  change that to whatever uudecoder you use
  60.  
  61.  
  62.          //
  63.         //     Jacques Fiset ------------ A2000 Vanilla Model
  64.     \\ //       Email:fisetj@citenet.net - 4megs/40megs/3.1/
  65.      \X/         Quebec/Canada ------------ A1000 2megs and Nothing Else
  66.                                             ZX-81 Oh well...
  67.  
  68.  
  69.